home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / Bonus / DBaldwin / htmllite.exe / demo_src / imgform.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-06-24  |  651 b   |  36 lines

  1. unit ImgForm;
  2.  
  3. interface
  4.  
  5. uses
  6.   Wintypes, Winprocs, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   ExtCtrls;
  8.  
  9. type
  10.   TImageForm = class(TForm)
  11.     Image1: TImage;
  12.     procedure FormShow(Sender: TObject);
  13.   private
  14.     { Private declarations }
  15.   public
  16.     { Public declarations }
  17.     ImageFormBitmap: TBitmap;
  18.   end;
  19.  
  20. var
  21.   ImageForm: TImageForm;
  22.  
  23. implementation
  24.  
  25. {$R *.DFM}
  26.  
  27. procedure TImageForm.FormShow(Sender: TObject);
  28. begin
  29. Image1.Picture.Bitmap := ImageFormBitmap;
  30. Width := Image1.Width + 30;  {makes for better fit}
  31. ClientHeight := Image1.Height;
  32. ClientWidth := Image1.Width;
  33. end;
  34.  
  35. end.
  36.